Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Facilities / Wcf / Castle.Facilities.WcfIntegration.Demo / Service References / UsingWindsorSvc.cs
blobfb813dd90ed251ee9be39728a9b098ee51769712
1 // Copyright 2004-2008 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 //------------------------------------------------------------------------------
16 // <auto-generated>
17 // This code was generated by a tool.
18 // Runtime Version:2.0.50727.42
20 // Changes to this file may cause incorrect behavior and will be lost if
21 // the code is regenerated.
22 // </auto-generated>
23 //------------------------------------------------------------------------------
25 namespace Castle.Facilities.WcfIntegration.Demo.UsingWindsorSvc
27 using System.CodeDom.Compiler;
28 using System.Diagnostics;
29 using System.ServiceModel;
30 using System.ServiceModel.Channels;
32 [GeneratedCode("System.ServiceModel", "3.0.0.0")]
33 [ServiceContract(ConfigurationName="Castle.Facilities.WcfIntegration.Demo.UsingWindsorSvc.IAmUsingWindsor")]
34 public interface IAmUsingWindsor
36 [OperationContract(Action="http://tempuri.org/IAmUsingWindsor/GetValueFromWindsorConfig",
37 ReplyAction="http://tempuri.org/IAmUsingWindsor/GetValueFromWindsorConfigResponse")]
38 int GetValueFromWindsorConfig();
41 [GeneratedCode("System.ServiceModel", "3.0.0.0")]
42 public interface IAmUsingWindsorChannel : IAmUsingWindsor, IClientChannel
46 [DebuggerStepThrough()]
47 [GeneratedCode("System.ServiceModel", "3.0.0.0")]
48 public partial class AmUsingWindsorClient : ClientBase<IAmUsingWindsor>, IAmUsingWindsor
50 public AmUsingWindsorClient()
54 public AmUsingWindsorClient(string endpointConfigurationName) :
55 base(endpointConfigurationName)
59 public AmUsingWindsorClient(string endpointConfigurationName, string remoteAddress) :
60 base(endpointConfigurationName, remoteAddress)
64 public AmUsingWindsorClient(string endpointConfigurationName, EndpointAddress remoteAddress) :
65 base(endpointConfigurationName, remoteAddress)
69 public AmUsingWindsorClient(Binding binding, EndpointAddress remoteAddress) :
70 base(binding, remoteAddress)
74 #region IAmUsingWindsor Members
76 public int GetValueFromWindsorConfig()
78 return base.Channel.GetValueFromWindsorConfig();
81 #endregion